home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
libs
/
unixlib.lha
/
unix
/
include
/
sys
/
uio.h
< prev
next >
Wrap
C/C++ Source or Header
|
1995-09-13
|
295b
|
18 lines
#ifndef _SYS_UIO_H
#define _SYS_UIO_H
/*
* The struct iovec is normally found
* in Berkeley systems in <sys/uio.h>.
* See the readv(2) and writev(2)
* manual pages for details.
*/
#include <sys/types.h>
struct iovec {
caddr_t iov_base;
int iov_len;
};
#endif